home *** CD-ROM | disk | FTP | other *** search
/ Aminet 37 / Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso / Aminet / util / cli / sploinerwos.lha / source.lha / common.h next >
C/C++ Source or Header  |  1995-09-25  |  557b  |  28 lines

  1. #include <stdio.h>
  2. #include <string.h>
  3. #include <stdlib.h>
  4. #include "usage.h"
  5. #include "getopt.h"
  6.  
  7. #ifndef FALSE
  8. #define FALSE 0
  9. #endif
  10.  
  11. #ifndef TRUE
  12. #define TRUE 1
  13. #endif
  14.  
  15. #ifndef SEEK_SET
  16. #define SEEK_SET        0       /* set file offset to offset */
  17. #endif
  18. #ifndef SEEK_CUR
  19. #define SEEK_CUR        1       /* set file offset to current plus offset */
  20. #endif
  21. #ifndef SEEK_END
  22. #define SEEK_END        2       /* set file offset to EOF plus offset */
  23. #endif
  24.  
  25. int FileSize(FILE *fp);
  26. void OutputName(char *name, char *outfile);
  27. extern const char Version[];
  28.